home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19990422-19990725 / 000299_news@columbia.edu _Mon Jul 19 19:55:08 1999.msg < prev    next >
Internet Message Format  |  1999-07-23  |  4KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id TAA21450
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 19 Jul 1999 19:55:08 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id TAA07012
  7.     for kermit.misc@watsun.cc.columbia.edu; Mon, 19 Jul 1999 19:27:56 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Any progress on K95 GUI?
  11. Date: 19 Jul 1999 23:27:55 GMT
  12. Organization: Columbia University
  13. Message-ID: <7n0c9r$6r1$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <3797ad60.28996103@news.mcs.com>,
  17. Ron Heiby <heiby_u@falkor.chi.il.us> wrote:
  18. : fdc@watsun.cc.columbia.edu (Frank da Cruz) wrote:
  19. : >The most attention will be given to those that clarify essential but
  20. : >confusing aspects of K95 usage (like "you must give the SET MODEM TYPE
  21. : OK. Here's one that started confusing me with the (very nice, by the way)
  22. : addition of TAPI support.
  23. : Sometimes, I just want to talk to the modem.
  24. "Why would anybody want to do such a thing?" (You're not supposed to
  25. talk to modems, you're supposed to click on them :-)
  26.  
  27. : It used to be easy. I know what port the modem is sitting on. I know what
  28. : speed it's supposed to talk at. I type "set port com2" and "set speed 115200"
  29. : (and maybe "set car off") and "connect". Poof! I'm talking to the modem. I
  30. : can check its settings. I can change its defaults. I can "manually" try
  31. : various options. Cool stuff that lets me figure out just exactly what is
  32. : going on.
  33. : Now, with TAPI support, as infrequently as I need to do this, it becomes a
  34. : major effort of paging through built-in help, trying various combinations of
  35. : settings, and usually returning (beaten and bloodied) after having decided
  36. : that whatever it was I wanted to do just didn't really need to be done that
  37. : badly.
  38. The old way *should* still work, and it does still work with real modems on
  39. real serial ports.  The reason we need TAPI is not so much because it's
  40. wonderful, but because it is the ONLY way to use the decidedly UN-real modems
  41. that come preinstalled in most PCs these days (see the Kermit FAQ for rants
  42. about Winmodems and the like).
  43.  
  44. Still, in either case, you'll normally need to do a couple things prior to
  45. CONNECTing to a bare modem (rather than DIALing the modem):
  46.  
  47.   set carrier-watch off
  48.   set flow none
  49.  
  50. That's because (a) the modem is not (or at least should not be) presenting
  51. the carrier signal when it doesn't have a connection and (b) if the flow
  52. control is set RTS/CTS (as it normally is for modern modems), the modem might
  53. not be presenting its CTS signal yet.
  54.  
  55. : Anyway, if there were a simple "talk to the port" mechanism that would work
  56. : for any sort of port, whether a "COMx" port or a TAPI port, would help me
  57. : from time to time. (I could also use this capability to walk someone through
  58. : some things over the phone when they have troubles.)
  59. K95 does give you the appropriate hints if you try to CONNECT to a serial
  60. port that is not presenting the normal modem signals.  From K95 1.1.17:
  61.  
  62.   [C:\k95\] K-95> set port 1
  63.   [C:\k95\] K-95> connect
  64.   No carrier detected on com1.
  65.   Hint: Use the DIAL command, or else SET CARRIER OFF.
  66.   If you want to make a network connection, use SET HOST or TELNET.
  67.   [C:\k95\] K-95>set carrier off
  68.   [C:\k95\] K-95>connect
  69.   AT
  70.   OK
  71.  
  72. - Frank